home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / gcc-1.37.1r14 / object oriented files / CConfigDirector.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-25  |  747 b   |  36 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CConfigDirector.h
  3.  
  4.         
  5.     SUPERCLASS = CDLOGDirector
  6.     
  7.     Copyright © 1991 Symantec Corporation. All rights reserved.
  8.     
  9.     TCL 1.1.3 Changes
  10.     [
  11.         - use pragma once
  12.         - changed forward declarations of CStringArray, CStringTable, and CDialogText
  13.     ]
  14.  ******************************************************************************/
  15.  
  16. #pragma once
  17.  
  18. #include <CStyleText.h>
  19. #include <CDLOGDirector.h>
  20.  
  21. extern char gOptions[500];
  22.  
  23. class CConfigDirector : public CDLOGDirector
  24. {
  25.  
  26. public:
  27.  
  28.     CStyleText        *itsMainPane;
  29.     
  30.     void IConfigDirector( short DLOGid, CDirectorOwner *aSupervisor);    
  31.     
  32.     virtual void Dispose( void);
  33.     virtual void DoCommand( long theCommand);
  34.     
  35.     Handle    itsData;
  36. };